home *** CD-ROM | disk | FTP | other *** search
- /**
- * Scout - The Amiga System Monitor
- *
- *------------------------------------------------------------------
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * You must not use this source code to gain profit of any kind!
- *
- *------------------------------------------------------------------
- *
- * @author Andreas Gelhausen
- * @author Richard Körber <rkoerber@gmx.de>
- */
-
-
-
- #ifndef SCOUT_H
- #define SCOUT_H
-
- /* System */
- #include <dos.h>
- #include <proto/asl.h>
- #include <proto/diskfont.h>
- #include <proto/dos.h>
- #include <proto/exec.h>
- #include <proto/expansion.h>
- #include <proto/gadtools.h>
- #include <proto/graphics.h>
- #include <proto/icon.h>
- #include <proto/identify.h>
- #include <proto/commodities.h>
- #include <proto/intuition.h>
- #include <proto/muimaster.h>
- #include <proto/rexxsyslib.h>
- #include <proto/usergroup.h>
- #include <proto/utility.h>
- #include <proto/misc.h>
- #include <proto/cia.h>
- #include <proto/timer.h>
-
- #include <devices/input.h>
- #include <devices/timer.h>
- #include <exec/execbase.h>
- #include <exec/memory.h>
- #include <exec/resident.h>
- #include <intuition/intuitionbase.h>
- #include <libraries/configvars.h>
- #include <libraries/commodities.h>
- #include <libraries/commodities_private.h>
- #include <libraries/expansion.h>
- #include <libraries/identify.h>
- #include <libraries/usergroup.h>
- #include <rexx/rxslib.h>
- #include <resources/misc.h>
- #include <resources/cia.h>
-
- /* ANSI C */
- #include <stdarg.h>
- #include <stdlib.h>
- #include <string.h>
- #include <stdio.h>
-
- /* MUI */
- #include <libraries/mui.h>
-
- /* PROJECT */
-
- #include "scout_protos.h"
- #include "scout_defs.h"
- #include "startup_protos.h"
- #include "startup_defs.h"
- #include "scout_globals_protos.h"
- #include "scout_net_protos.h"
-
- #include "objects/scout_asm_protos.h"
- #include "objects/scout_extras_protos.h"
- #include "objects/scout_expansions_protos.h"
- #include "objects/scout_flags_protos.h"
- #include "objects/scout_fonts_protos.h"
- #include "objects/scout_libs_protos.h"
- #include "objects/scout_locks_protos.h"
- #include "objects/scout_ports_protos.h"
- #include "objects/scout_semaphores_protos.h"
- #include "objects/scout_tasks_protos.h"
- #include "objects/scout_windows_protos.h"
- #include "objects/scout_mount_protos.h"
- #include "objects/scout_commands_protos.h"
- #include "objects/scout_arexx_protos.h"
- #include "objects/scout_assigns_protos.h"
- #include "objects/scout_commodity_protos.h"
- #include "objects/scout_screenmode_protos.h"
- #include "objects/scout_classes_protos.h"
-
- #endif /* SCOUT_H */
-